home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / stringreq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-07  |  456 b   |  25 lines

  1. // stringreq.h
  2. // 01.02.95
  3.  
  4.  
  5. #include <libraries/gadtools.h>
  6. #include <string.h>
  7.  
  8. #include <screen.h>
  9. #include <window.h>
  10. #include <gadgetlist.h>
  11. #include <gadgets/string.h>
  12.  
  13. class rstring : public window
  14. {
  15. public:
  16.     STRPTR def ;
  17.     STRPTR titre ;
  18.     rstring(short l, short t, short w, short h) : window(l, t, w, h) {}
  19.     void        open(screen *) ;
  20.     void fstring(gadget *g, unsigned long classe, unsigned short code) ;
  21. };
  22.  
  23.  
  24. IMPORT screen   *ns ;
  25.